home *** CD-ROM | disk | FTP | other *** search
/ Enigma Amiga Life 109 / EnigmaAmiga109CD.iso / dalla rivista / host contacted / jikes.lha / jikes-1.11 / src / case.cpp < prev    next >
C/C++ Source or Header  |  1999-01-25  |  2KB  |  47 lines

  1. // $Id: case.cpp,v 1.3 1999/01/25 20:00:27 shields Exp $
  2. //
  3. // This software is subject to the terms of the IBM Jikes Compiler
  4. // License Agreement available at the following URL:
  5. // http://www.ibm.com/research/jikes.
  6. // Copyright (C) 1996, 1998, International Business Machines Corporation
  7. // and others.  All Rights Reserved.
  8. // You must accept the terms of that agreement to use this software.
  9. //
  10. #include "config.h"
  11. #include "case.h"
  12.  
  13. char Case::lower[128] =
  14. {
  15.       0,   1,   2,   3,   4,   5,   6,   7,   8,   9,
  16.      10,  11,  12,  13,  14,  15,  16,  17,  18,  19,
  17.      20,  21,  22,  23,  24,  25,  26,  27,  28,  29,
  18.      30,  31,  32,  33,  34,  35,  36,  37,  38,  39,
  19.      40,  41,  42,  43,  44,  45,  46,  47,  48,  49,
  20.      50,  51,  52,  53,  54,  55,  56,  57,  58,  59,
  21.      60,  61,  62,  63,  64, U_a, U_b, U_c, U_d, U_e,
  22.     U_f, U_g, U_h, U_i, U_j, U_k, U_l, U_m, U_n, U_o,
  23.     U_p, U_q, U_r, U_s, U_t, U_u, U_v, U_w, U_x, U_y,
  24.     U_z,  91,  92,  93,  94,  95,  96, U_a, U_b, U_c,
  25.     U_d, U_e, U_f, U_g, U_h, U_i, U_j, U_k, U_l, U_m,
  26.     U_n, U_o, U_p, U_q, U_r, U_s, U_t, U_u, U_v, U_w,
  27.     U_x, U_y, U_z, 123, 124, 125, 126, 127
  28. };
  29.  
  30. char Case::upper[128] =
  31. {
  32.       0,   1,   2,   3,   4,   5,   6,   7,   8,   9,
  33.      10,  11,  12,  13,  14,  15,  16,  17,  18,  19,
  34.      20,  21,  22,  23,  24,  25,  26,  27,  28,  29,
  35.      30,  31,  32,  33,  34,  35,  36,  37,  38,  39,
  36.      40,  41,  42,  43,  44,  45,  46,  47,  48,  49,
  37.      50,  51,  52,  53,  54,  55,  56,  57,  58,  59,
  38.      60,  61,  62,  63,  64, U_A, U_B, U_C, U_D, U_E,
  39.     U_F, U_G, U_H, U_I, U_J, U_K, U_L, U_M, U_N, U_O,
  40.     U_P, U_Q, U_R, U_S, U_T, U_U, U_V, U_W, U_X, U_Y,
  41.     U_Z,  91,  92,  93,  94,  95,  96, U_A, U_B, U_C,
  42.     U_D, U_E, U_F, U_G, U_H, U_I, U_J, U_K, U_L, U_M,
  43.     U_N, U_O, U_P, U_Q, U_R, U_S, U_T, U_U, U_V, U_W,
  44.     U_X, U_Y, U_Z, 123, 124, 125, 126, 127
  45. };
  46.  
  47.